home *** CD-ROM | disk | FTP | other *** search
- #
- # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GX extender.
- #
-
- CFLAGS = -DMSDOS
-
- all : wcle.tag udaemon.exe tdaemon.exe uclient.exe tclient.exe
-
- udaemon.exe: link.rsp udaemon.obj
- xglu E(udaemon) udaemon.obj @link.rsp
- copy udptestd.dvp ~\network
-
- tdaemon.exe: link.rsp tdaemon.obj
- xglu E(tdaemon) tdaemon.obj @link.rsp
- copy tcptestd.dvp ~\network
-
- tclient.exe: link.rsp tclient.obj
- xglu E(tclient) tclient.obj @link.rsp
-
- uclient.exe: link.rsp uclient.obj
- xglu E(uclient) uclient.obj @link.rsp
-
- .c.obj:
- wcc386 $(CFLAGS) $<
-
- wcle.tag:
- del *.tag
- del *.obj
- del *.map
- del *.exp
- del *.exe
- del *.rsp
- echo >wcle.tag
-
- link.rsp: wcle
- echo sys.lib > link.rsp
- echo -format lin >> link.rsp
- echo -heapsize 1 >> link.rsp
- echo -stack 30000 >> link.rsp
- echo -noignore >> link.rsp
- echo -dosseg >> link.rsp
-